ColorList Class

Used to specify the vertex colors of a Trimesh.

Events

None

Properties

Enabled


Methods

AddRGBToAll

Copy

Item


More information available in parent classes: Object


Example

The following sets the colors of each vertex in a triangle to red, green, and blue, respectively.

Dim tm as Trimesh
tm= New Trimesh

// define the vertices
tm.VertexCount = 3
tm.VertexPositions.SetXYZ(0, 5, 5, 0 )
tm.VertexPositions.SetXYZ(1, 5, 10, 0 )
tm.VertexPositions.SetXYZ(2, 10, 10, 0 )

tm.HasVertexColors= True
tm.VertexColors.Item(0) = &cFF0000
tm.VertexColors.Item(1) = &c00FF00
tm.VertexColors.Item(2) = &c0000FF

See Also

Bounds3D, Element3D, Group3D, Light3D, Material, Object3D, Quaternion, TriangleList, Trimesh, UVList, Vector3D, VectorList classes; Rb3DSpace control.